home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 1996 June
/
Software of the Month Club 1996 June.iso
/
pc
/
os2
/
utility
/
clock
/
module.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-02-21
|
299b
|
16 lines
// Class MODULE: Encapsulates the load/unload logic for a OS/2 resource module.
#define INCL_BASE
#include <os2.h>
class Module
{
private:
HMODULE Handle ;
public:
Module ( PSZ Name = PSZ("") ) ;
~Module ( ) ;
HMODULE QueryHandle () { return ( Handle ) ; }
} ;